home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / iconv8_s.arc / ICONT.ARC / KEYWORD.C < prev    next >
C/C++ Source or Header  |  1990-03-28  |  961b  |  46 lines

  1. #include "..\h\keyword.h"
  2. #include "tsym.h"
  3.  
  4. /*
  5.  * Keyword table.
  6.  */
  7.  
  8. struct keyent keytab[] = {
  9.    "ascii",    K_ASCII,
  10.    "clock",    K_CLOCK,
  11.    "collections",    K_COLLECTIONS,
  12.    "cset",    K_CSET,
  13.    "current",    K_CURRENT,
  14.    "date",    K_DATE,
  15.    "dateline",    K_DATELINE,
  16.    "digits",    K_DIGITS,
  17.    "error",    K_ERROR,
  18.    "errornumber",    K_ERRORNUMBER,
  19.    "errortext",    K_ERRORTEXT,
  20.    "errorvalue",    K_ERRORVALUE,
  21.    "errout",    K_ERROUT,
  22.    "fail",    K_FAIL,
  23.    "features",    K_FEATURES,
  24.    "file",    K_FILE,
  25.    "host",    K_HOST,
  26.    "input",    K_INPUT,
  27.    "lcase",    K_LCASE,
  28.    "letters",    K_LETTERS,
  29.    "level",    K_LEVEL,
  30.    "line",    K_LINE,
  31.    "main",    K_MAIN,
  32.    "null",    K_NULL,
  33.    "output",    K_OUTPUT,
  34.    "pos",    K_POS,
  35.    "random",    K_RANDOM,
  36.    "regions",    K_REGIONS,
  37.    "source",    K_SOURCE,
  38.    "storage",    K_STORAGE,
  39.    "subject",    K_SUBJECT,
  40.    "time",    K_TIME,
  41.    "trace",    K_TRACE,
  42.    "ucase",    K_UCASE,
  43.    "version",    K_VERSION,
  44.    "",        -1
  45.    };
  46.